home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
-
- SeeMovieRun.c
-
- A starter main file for writing QuickTime literate programs with the
- THINK Class Library
-
- Copyright © 1992 Joe Zobkiw. All rights reserved.
- Portions Copyright © 1990 Symantec Corporation. All rights reserved.
-
- ******************************************************************************/
-
-
- #include "CQTApp.h"
-
- void main()
-
- {
- CQTApp *QTApp;
-
- QTApp = new CQTApp;
-
- QTApp->IQTApp();
-
- QTApp->Run();
- QTApp->Exit();
- }
-